home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ SFP Options 3.xpl < prev    next >
Text File  |  2001-12-03  |  2KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="System\Software Installation\Windows File Protection"
  5. "NAME"="WFP Enabled"
  6. "VERSION"="1.10"
  7. "OSVERSION"="0001011"
  8. "LANGUAGE"="VBScript"
  9. "WARNING"="1"
  10. "TEXT 1"="Enable Windows File Protection (WFP)"
  11. "DESCRIPTION 1"="WFP is a system that prevents "bad" apps from changing system files. Anyway, you can disable it here. After doing so, you will need to perform a restart before this change will take effect. A message to your event log is written also when WFP is disabled."
  12. "DESCRIPTION 2"="NOTE: Once you have disabled WFP and would like to enable it again, you should first enable it here, reboot and then perform the command "SFC /SCANNOW" from a command prompt to make sure WFP is up-to-date again."
  13. "DESCRIPTION 3"="IMPORTANT: Disabling WFP does only work until Service Pack 1 of Windows 2000. If you installed Service Pack 2 or above, Windows will no longer allow to disable WFP :-(."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18. "COMMENT 2"="Thanks to http://www.collakesoftware.com which have found this setting. Thanks to Ojatex@aol.com for the notice."
  19.  
  20. sV1="HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SFCDisable" 'DW 
  21. sV1_Val=4294967197 
  22.  
  23.  
  24. Sub Plugin_Initialize 
  25.     s=RegReadValue(sV1)
  26.  
  27.     'NOTE: this number is so BIG, you need to compare it as string...
  28.     if s<>cstr(sV1_Val) then setuielement 1,true
  29. End Sub
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35.  if GetUIElement(1)=true then
  36.     Call RegWriteValue(sV1,0,2)
  37.  else
  38.     Call RegWriteValue(sV1,sV1_Val,2)
  39.  end if
  40.  
  41.  Call Restart()
  42. End Sub
  43.  
  44. Sub Plugin_Terminate 
  45. End Sub
  46.